home *** CD-ROM | disk | FTP | other *** search
- /* Box arexx */
-
- options results
- parse ARG Port x1 y1 x2 y2 b
- ADDRESS value Port
-
- pp_GetDepth
- D=result
- IF D<24 then DO
- pp_Warn 'This*script*is*only|for*24bits*Picture.'
- pp_PermitRefresh
- Exit
- END
-
- pp_ClosestColor 0 0 0
- color=result
- pp_SetApen color
- pp_ClosestColor 255 255 255
- color=result
- pp_SetBpen color
-
- pp_ComposeReqOff
- pp_Compose 0 100 0
- pp_PicttoSpare
- pp_SpareOnOff
- pp_ColorBalance 0 0 0 255*-1 0 0
- pp_LineArt 3
- pp_EffectOn
- pp_BoxF x1 y1 x2 y2
- pp_GaussianBlur 10
- pp_BoxF x1 y1 x2 y2
- pp_LineArt 3
- pp_BoxF x1 y1 x2 y2
- pp_SpareToSten
- pp_SpareOnOff
- pp_UpdateUndoBox x1-1 y1-1 x2+1 y2+1
- pp_MaskOn
- pp_Compose 0 50 0
- pp_Spare
- pp_BoxF x1 y1 x2 y2
- pp_MaskOff
- pp_EffectOff
- pp_ComposeReqOn
-
-